home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 21 / CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso / CUCD / Programming / Python-1.4 / Python1.4_Source / Modules / mathmodule.c < prev    next >
C/C++ Source or Header  |  1997-03-02  |  6KB  |  275 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its
  8. documentation for any purpose and without fee is hereby granted,
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI or Corporation for National Research Initiatives or
  13. CNRI not be used in advertising or publicity pertaining to
  14. distribution of the software without specific, written prior
  15. permission.
  16.  
  17. While CWI is the initial source for this software, a modified version
  18. is made available by the Corporation for National Research Initiatives
  19. (CNRI) at the Internet address ftp://ftp.python.org.
  20.  
  21. STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
  22. REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  23. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
  24. CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  25. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  26. PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  27. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  28. PERFORMANCE OF THIS SOFTWARE.
  29.  
  30. ******************************************************************/
  31.  
  32. /* Math module -- standard C math library functions, pi and e */
  33.  
  34. #include "allobjects.h"
  35.  
  36. #include <errno.h>
  37.  
  38. #define getdoublearg(v, a) getargs(v, "d", a)
  39. #define get2doublearg(v, a, b) getargs(v, "(dd)", a, b)
  40.  
  41. #include "mymath.h"
  42.  
  43. #include "protos/mathmodule_protos.h"
  44.  
  45. #ifndef _MSC_VER
  46. #ifndef __STDC__
  47. extern double fmod PROTO((double, double));
  48. extern double frexp PROTO((double, int *));
  49. extern double ldexp PROTO((double, int));
  50. extern double modf PROTO((double, double *));
  51. #endif /* __STDC__ */
  52. #endif /* _MSC_VER */
  53.  
  54.  
  55. #ifdef i860
  56. /* Cray APP has bogus definition of HUGE_VAL in <math.h> */
  57. #undef HUGE_VAL
  58. #endif
  59.  
  60. #ifdef HUGE_VAL
  61. #define CHECK(x) if (errno != 0) ; \
  62.     else if (-HUGE_VAL <= (x) && (x) <= HUGE_VAL) ; \
  63.     else errno = ERANGE
  64. #else
  65. #define CHECK(x) /* Don't know how to check */
  66. #endif
  67.  
  68. static object *
  69. math_error()
  70. {
  71.     if (errno == EDOM)
  72.         err_setstr(ValueError, "math domain error");
  73.     else if (errno == ERANGE)
  74.         err_setstr(OverflowError, "math range error");
  75.     else
  76.         err_errno(ValueError); /* Unexpected math error */
  77.     return NULL;
  78. }
  79.  
  80. #ifdef __SASC
  81. static object *math_post_f(double x)
  82. {
  83.     CHECK(x);
  84.     if(errno!=0) return math_error();
  85.     else return newfloatobject(x);
  86. }
  87.  
  88. #define FUNC1(stubname,func) \
  89. static object * stubname(object *self, object *args) { \
  90.     double x; if(!getdoublearg(args,&x)) return NULL; \
  91.     errno=0; x=func(x); return math_post_f(x); }
  92.  
  93. #define FUNC2(stubname,func) \
  94. static object * stubname(object *self, object *args) { \
  95.     double x, y; if(!get2doublearg(args, &x, &y)) return NULL; \
  96.     errno=0; x=func(x,y); return math_post_f(x); }
  97.  
  98. #else
  99.  
  100. static object *
  101. math_1(args, func)
  102.     object *args;
  103.     double (*func) FPROTO((double));
  104. {
  105.     double x;
  106.     if (!getdoublearg(args, &x))
  107.         return NULL;
  108.     errno = 0;
  109.     x = (*func)(x);
  110.     CHECK(x);
  111.     if (errno != 0)
  112.         return math_error();
  113.     else
  114.         return newfloatobject(x);
  115. }
  116.  
  117. static object *
  118. math_2(args, func)
  119.     object *args;
  120.     double (*func) FPROTO((double, double));
  121. {
  122.     double x, y;
  123.     if (!get2doublearg(args, &x, &y))
  124.         return NULL;
  125.     errno = 0;
  126.     x = (*func)(x, y);
  127.     CHECK(x);
  128.     if (errno != 0)
  129.         return math_error();
  130.     else
  131.         return newfloatobject(x);
  132. }
  133.  
  134. #define FUNC1(stubname, func) \
  135.     static object * stubname(self, args) object *self, *args; { \
  136.         return math_1(args, func); \
  137.     }
  138.  
  139. #define FUNC2(stubname, func) \
  140.     static object * stubname(self, args) object *self, *args; { \
  141.         return math_2(args, func); \
  142.     }
  143.  
  144. #endif /* not __SASC */
  145.  
  146. FUNC1(math_acos, acos)
  147. FUNC1(math_asin, asin)
  148. FUNC1(math_atan, atan)
  149. FUNC2(math_atan2, atan2)
  150. FUNC1(math_ceil, ceil)
  151. FUNC1(math_cos, cos)
  152. FUNC1(math_cosh, cosh)
  153. FUNC1(math_exp, exp)
  154. #ifdef __MWERKS__
  155. double myfabs(double x) { return fabs(x); }
  156. FUNC1(math_fabs, myfabs)
  157. #else
  158. FUNC1(math_fabs, fabs)
  159. #endif
  160. FUNC1(math_floor, floor)
  161. FUNC2(math_fmod, fmod)
  162. FUNC2(math_hypot, hypot)
  163. FUNC1(math_log, log)
  164. FUNC1(math_log10, log10)
  165. #ifdef MPW_3_1 /* This hack is needed for MPW 3.1 but not for 3.2 ... */
  166. FUNC2(math_pow, power)
  167. #else
  168. FUNC2(math_pow, pow)
  169. #endif
  170. FUNC1(math_sin, sin)
  171. FUNC1(math_sinh, sinh)
  172. FUNC1(math_sqrt, sqrt)
  173. FUNC1(math_tan, tan)
  174. FUNC1(math_tanh, tanh)
  175.  
  176.  
  177. static object *
  178. math_frexp(self, args)
  179.     object *self;
  180.     object *args;
  181. {
  182.     double x;
  183.     int i;
  184.     if (!getdoublearg(args, &x))
  185.         return NULL;
  186.     errno = 0;
  187.     x = frexp(x, &i);
  188.     CHECK(x);
  189.     if (errno != 0)
  190.         return math_error();
  191.     return mkvalue("(di)", x, i);
  192. }
  193.  
  194. static object *
  195. math_ldexp(self, args)
  196.     object *self;
  197.     object *args;
  198. {
  199.     double x, y;
  200.     /* Cheat -- allow float as second argument */
  201.     if (!get2doublearg(args, &x, &y))
  202.         return NULL;
  203.     errno = 0;
  204.     x = ldexp(x, (int)y);
  205.     CHECK(x);
  206.     if (errno != 0)
  207.         return math_error();
  208.     else
  209.         return newfloatobject(x);
  210. }
  211.  
  212. static object *
  213. math_modf(self, args)
  214.     object *self;
  215.     object *args;
  216. {
  217.     double x, y;
  218.     if (!getdoublearg(args, &x))
  219.         return NULL;
  220.     errno = 0;
  221. #ifdef MPW /* MPW C modf expects pointer to extended as second argument */
  222. {
  223.     extended e;
  224.     x = modf(x, &e);
  225.     y = e;
  226. }
  227. #else
  228.     x = modf(x, &y);
  229. #endif
  230.     CHECK(x);
  231.     if (errno != 0)
  232.         return math_error();
  233.     return mkvalue("(dd)", x, y);
  234. }
  235.  
  236. static struct methodlist math_methods[] = {
  237.     {"acos", math_acos},
  238.     {"asin", math_asin},
  239.     {"atan", math_atan},
  240.     {"atan2", math_atan2},
  241.     {"ceil", math_ceil},
  242.     {"cos", math_cos},
  243.     {"cosh", math_cosh},
  244.     {"exp", math_exp},
  245.     {"fabs", math_fabs},
  246.     {"floor", math_floor},
  247.     {"fmod", math_fmod},
  248.     {"frexp", math_frexp},
  249.     {"hypot", math_hypot},
  250.     {"ldexp", math_ldexp},
  251.     {"log", math_log},
  252.     {"log10", math_log10},
  253.     {"modf", math_modf},
  254.     {"pow", math_pow},
  255.     {"sin", math_sin},
  256.     {"sinh", math_sinh},
  257.     {"sqrt", math_sqrt},
  258.     {"tan", math_tan},
  259.     {"tanh", math_tanh},
  260.     {NULL,        NULL}        /* sentinel */
  261. };
  262.  
  263. void
  264. initmath()
  265. {
  266.     object *m, *d, *v;
  267.     
  268.     m = initmodule("math", math_methods);
  269.     d = getmoduledict(m);
  270.     dictinsert(d, "pi", v = newfloatobject(atan(1.0) * 4.0));
  271.     DECREF(v);
  272.     dictinsert(d, "e", v = newfloatobject(exp(1.0)));
  273.     DECREF(v);
  274. }
  275.